home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 0.9.1.3 stable / flock-0.9.1.3.en-US.win32.exe / flock / chrome / classic.jar / skin / classic / global / console / console.css < prev   
Cascading Style Sheet File  |  2006-07-18  |  6KB  |  238 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is mozilla.org code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Netscape Communications Corporation.
  18.  * Portions created by the Initial Developer are Copyright (C) 1998
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Joe Hewitt <hewitt@netscape.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /* ===== console.css ====================================================
  39.    == Styles used by the Error Console window.
  40.    ====================================================================== */
  41.  
  42. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  43.  
  44. .console-box {
  45.   background-color: -moz-Field;
  46.   color: -moz-FieldText;
  47. }
  48.  
  49. /* ::::: console rows ::::: */
  50.  
  51. .console-row {
  52.   border-bottom: 1px dotted threedshadow;
  53.   padding: 4px 0px;
  54. }
  55.  
  56. .console-row-icon {
  57.   padding: 4px;
  58.   -moz-padding-start: 5px;
  59.   -moz-box-align: start !important;
  60. }
  61.  
  62. .console-row-msg > label,
  63. .console-row-file > label:first-child {
  64.   display: none;
  65. }
  66.  
  67. .console-icon {
  68.   list-style-image: inherit;
  69. }
  70.  
  71. .console-error-msg {
  72.   margin-bottom: 2px;
  73. }
  74.  
  75. /* ..... error rows ..... */
  76.  
  77. .console-row-code {
  78.   padding-top: 3px;
  79.   padding-bottom: 3px;
  80.   -moz-padding-start: 3px;
  81.   -moz-padding-end: 0px;
  82.   color: #0000BB;
  83.   font-size: larger;
  84. }
  85.  
  86. .console-dots,
  87. .console-caret {
  88.   height: 9px;
  89. }
  90.  
  91. .console-dots {
  92.   background: url("chrome://global/skin/console/console-error-dash.gif") repeat-x top;
  93. }
  94.  
  95. .console-caret {
  96.   width: 7px;
  97.   background: url("chrome://global/skin/console/console-error-caret.gif") no-repeat top;
  98. }
  99.  
  100. /* ..... message rows ..... */
  101.  
  102. .console-row[type="message"] {
  103.   font-family: monospace;
  104. }
  105.  
  106. /* ..... selected state ..... */
  107.  
  108. .console-row[selected="true"] {
  109.     background-image: url("chrome://mozapps/skin/shared/itemSelected.png");
  110. }
  111.  
  112. .console-row-code[selected="true"],
  113. .console-row-content[selected="true"] > .console-row-file > .console-error-source > .text-link {
  114.   color: inherit !important;
  115. }
  116.  
  117. /* ::::: icons ::::: */
  118.  
  119. .console-row[type="error"],
  120. .console-row[type="exception"] {
  121.   list-style-image: url("chrome://global/skin/console/bullet-error.png");
  122. }
  123.  
  124. .console-row[type="error"] .console-row-msg,
  125. .console-row[type="exception"] .console-row-msg {
  126.   font-weight: bold;
  127. }
  128.  
  129. .console-row[type="warning"] {
  130.   list-style-image: url("chrome://global/skin/console/bullet-warning.png");
  131. }
  132.  
  133. .console-row[type="message"] {
  134.   list-style-image: url("chrome://global/skin/console/bullet-question.png");
  135. }
  136.  
  137. /* ::::: toolbars ::::: */
  138.  
  139. #TextboxEval {
  140.   margin: 2px !important;
  141. }
  142.  
  143. #ButtonEval {
  144.   margin-top: 2px !important;
  145.   margin-bottom: 2px !important;
  146.   -moz-margin-start: 0px !important;
  147.   -moz-margin-end: 2px !important;
  148. }
  149.  
  150. toolbarseparator {
  151.   min-height: 1em;
  152. }
  153.  
  154. /* Toolbar icons */
  155.  
  156. #ToolbarMode toolbarbutton {
  157.   min-width: 57px;
  158.   padding: 4px !important;
  159. }
  160.  
  161. toolbar#ToolbarMode toolbarbutton:active,
  162. toolbar#ToolbarMode toolbarbutton[checked="true"] {
  163.   -moz-padding-start: 5px !important;
  164.   -moz-padding-end: 3px !important;
  165. }
  166.  
  167.  
  168. toolbar#ToolbarMode toolbarbutton {
  169.   list-style-image: url("chrome://global/skin/console/console-toolbar.png");
  170.   -moz-box-orient: horizontal;
  171.   padding: 4px !important;
  172. }
  173.  
  174. toolbarbutton[observes="Console:modeAll"] {
  175.   -moz-image-region: rect(0px 24px 24px 0px);
  176. }
  177.  
  178. toolbarbutton[observes="Console:modeAll"] {
  179.   -moz-image-region: rect(0px 24px 24px 0px);
  180. }
  181.  
  182. toolbarbutton[observes="Console:modeAll"]:hover,
  183. toolbarbutton[observes="Console:modeAll"][checked="true"] {
  184.   -moz-image-region: rect(24px 24px 48px 0px);
  185. }
  186.  
  187. toolbarbutton[observes="Console:modeErrors"] {
  188.   -moz-image-region: rect(0px 96px 24px 72px);
  189. }
  190.  
  191. toolbarbutton[observes="Console:modeErrors"]:hover,
  192. toolbarbutton[observes="Console:modeErrors"][checked="true"] {
  193.   -moz-image-region: rect(24px 96px 48px 72px);
  194. }
  195.  
  196. toolbarbutton[observes="Console:modeWarnings"] {
  197.   -moz-image-region: rect(0px 72px 24px 48px);
  198. }
  199.  
  200. toolbarbutton[observes="Console:modeWarnings"]:hover,
  201. toolbarbutton[observes="Console:modeWarnings"][checked="true"] {
  202.   -moz-image-region: rect(24px 72px 48px 48px);
  203. }
  204.  
  205. toolbarbutton[observes="Console:modeMessages"] {
  206.   -moz-image-region: rect(0px 48px 24px 24px);
  207. }
  208.  
  209. toolbarbutton[observes="Console:modeMessages"]:hover,
  210. toolbarbutton[observes="Console:modeMessages"][checked="true"] {
  211.   -moz-image-region: rect(24px 48px 48px 24px);
  212. }
  213.  
  214. toolbarbutton[observes="Console:clear"] {
  215.   -moz-image-region: rect(0px 120px 24px 96px);
  216. }
  217.  
  218. toolbarbutton[observes="Console:clear"]:hover,
  219. toolbarbutton[observes="Console:clear"][checked="true"] {
  220.   -moz-image-region: rect(24px 120px 48px 96px);
  221. }
  222.  
  223. toolbar#ToolbarMode .toolbarbutton-icon {
  224.   padding: 2px 0 !important;
  225. }
  226.  
  227. toolbar#ToolbarMode .toolbarbutton-text {
  228.   -moz-padding-end: 4px;
  229. }
  230.  
  231.  
  232. /* ::::: Fix Error Console toolbar button text spacing ::::: */
  233.  
  234. .toolbarbutton-text {
  235.   -moz-padding-start: 0px;
  236.   -moz-padding-end: 5px;
  237. }
  238.